home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / tools / utils / twtcp122 / pktdrv / pktdlink / inetcust.h < prev    next >
C/C++ Source or Header  |  1995-11-25  |  1KB  |  42 lines

  1. #ifndef _INET_CUST
  2. #define _INET_CUST
  3.  
  4. #ifndef INADDR
  5. #define INADDR unsigned long
  6. #endif
  7.  
  8. #define INETCUSTCOOKIE   0x49435354L        /* "ICST" */
  9.  
  10. #define MAXUSERNAME        16
  11. #define MAXNAME            64
  12. #define MAXHOSTNAME        16
  13.  
  14. typedef struct
  15. {
  16.     long    magic;                /* magic to identify version */
  17.     HADDR    haddr;                /* my ethernet address          */
  18.     INADDR    inaddr;                /* my internet address       */
  19.     short    subnetbits;            /* number of subnet bits     */
  20.     short    tcpwnd;                /* default tcp window size   */
  21.     short    tcplowater;
  22.     long    netmem;                /* size of mem to hold buffers */
  23.     char    username[MAXUSERNAME];
  24.     char    hosts[64];            /* path to hosttable         */
  25.     char    passwd[64];            /* path to passwdfile         */
  26.     short    gmtoffs;            /* time zone offset          */
  27.     char    tzname[6];            /* timezone name             */
  28.     INADDR    timeserver[2];        /* ip adr of 2 timeservers   */ 
  29.     INADDR    nameserver[3];        /* ip adr of 3 nameservers   */
  30.     INADDR    gateway;            /* ip adr of gateway         */
  31.     char    hostname[MAXHOSTNAME];            /* name of this host */
  32.     char    domainname[MAXNAME];/* domainname of this host */
  33.     char    mailhost[MAXNAME];    /* mailhost name */
  34.     char    loginhost[MAXNAME];    /* default host */
  35.     char    printhost[MAXNAME];    /* printserver */
  36.     char    printdev[MAXHOSTNAME];            /* printer device */
  37.     long    ftpwin;                /* size of ftp buffers */    
  38. } INETCUST;
  39.  
  40.  
  41.  
  42. #endif